Interactive Programs¶
🎨 print
¶
print_demo.py
¶
🎨 input
¶
input_demo.py
¶
The Debugger 🪳🚫¶
pytest
👩🏻🔬 👨🏽🔬¶
👩🏽🎨 Welcome to Wendy's¶
Write a python script that:
- Welcomes the user to Wendy's
"Welcome to Wendy's!"
- Asks for the user's name
"What is your name? "
- Prompts the user for a sandwich type
"What kind of sandwich do you want? "
- Prompts the user for sandwich additions
"What do you want on it? "
- The print out a summary
"<User> wants a <type> sandwich with <additions>!"
Key Ideas¶
print
input
- formatted strings (e.g.
f'Hello {name}!'
)